Syntax
Interface
Description
GetItemArray returns an array of 32-bit integers containing all of the document ids selected in a search filter.
Notes
VBScript cannot access an array of integers, so the returned value cannot be used with VBScript
Example
Dim items As Variant
items = searchFilter.GetItemArray(0)
Dim i As Long
Dim docid As Long
For i = 0 To UBound(items)
docid = items(i)
...